Max Property (InputTime<T>)
In This Topic
Gets or sets the latest time that the user can enter.
Syntax
'Declaration
<JsonAttribute(2)>
<JsonConverterAttribute(C1.Web.Mvc.Serialization.TimeConverter)>
Public Property Max As System.Date
'Usage
Dim instance As InputTime(Of T)
Dim value As System.Date
instance.Max = value
value = instance.Max
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public System.DateTime Max {get; set;}
public read-write property Max: System.DateTime;
JsonAttribute(2)
JsonConverterAttribute(C1.Web.Mvc.Serialization.TimeConverter)
public function get,set Max : System.DateTime
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public: __property System.DateTime get_Max();
public: __property void set_Max(
System.DateTime value
);
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public:
property System.DateTime Max {
System.DateTime get();
void set ( System.DateTime value);
}
See Also